home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue24 / menus / ODMENU2U.DFM / ODMENU2U.txt
Encoding:
Text File  |  1997-05-27  |  1.3 KB  |  60 lines

  1. object Form1: TForm1
  2.   Left = 203
  3.   Top = 168
  4.   Width = 295
  5.   Height = 154
  6.   Caption = 'Form1'
  7.   Font.Color = clWindowText
  8.   Font.Height = -11
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = []
  11.   Menu = MainMenu1
  12.   PixelsPerInch = 96
  13.   OnCreate = FormCreate
  14.   OnDestroy = FormDestroy
  15.   TextHeight = 13
  16.   object Button1: TButton
  17.     Left = 96
  18.     Top = 32
  19.     Width = 105
  20.     Height = 33
  21.     Caption = 'Change &Bitmap'
  22.     TabOrder = 0
  23.     OnClick = Button1Click
  24.   end
  25.   object MainMenu1: TMainMenu
  26.     Left = 16
  27.     object Menu1: TMenuItem
  28.       Caption = '&Customised Menus'
  29.       object MenuItem1: TMenuItem
  30.         Caption = '1'
  31.         OnClick = MenuItem2Click
  32.       end
  33.       object MenuItem2: TMenuItem
  34.         Caption = '2'
  35.         OnClick = MenuItem3Click
  36.       end
  37.     end
  38.     object HelpItem1: TMenuItem
  39.       Caption = '&Help'
  40.       object Contents1: TMenuItem
  41.         Caption = '&Contents'
  42.       end
  43.       object SearchforHelpOn1: TMenuItem
  44.         Caption = '&Search for Help On...'
  45.       end
  46.       object HowtoUseHelp1: TMenuItem
  47.         Caption = '&How to Use Help'
  48.       end
  49.       object About1: TMenuItem
  50.         Caption = '&About...'
  51.       end
  52.     end
  53.   end
  54.   object BmpDlg: TOpenDialog
  55.     Filter = 'Bitmaps (*.bmp)|*.bmp|All files (*.*)|*.*'
  56.     InitialDir = 'c:\delphi\images\splash\16color'
  57.     Left = 56
  58.   end
  59. end
  60.